home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-SIG: World of Games
/
PC-SIG World of Games (CDRM1080710) (1993).iso
/
2573
/
HARDDISK.BAT
< prev
next >
Wrap
DOS Batch File
|
1980-01-01
|
609b
|
22 lines
echo off
echo HARDDISK
echo This program creates a directory \LASTHAF in which the game library is
echo extracted to.
if x%1==x goto noparm
if x%2==x goto noparm
mkdir %2\lasthaf
mkdir %2\last2
%1lharc e diska.lzh %2\lasthaf\
%1lharc e diskb.lzh %2\lasthaf\ computer.cga
%1lharc e diskb.lzh %2\lasthaf\ table.cga
%1lharc e diskb.lzh %2\lasthaf\ quest.cga
%1lharc e diskb.lzh %2\last2\
%1lharc e diskc.lzh %2\lasthaf\ instruct.doc
%1lharc e diskc.lzh %2\last2\
goto end1
:noparm
echo INVALID FORMAT! Type HARDDISK (drive with ORIGINAL disk) (hard disk)
echo Example: HARDDISK B: C:
:end1